Anillo 3 - Original

An interactive fiction by Mel Hython (2009) - the Inform 7 source text

Home page

Contents
Previous
Next

Complete text
Section 10 - Coger que lleva alguien

Instead of removing a thing from a patroller:
    try taking noun.

Instead of taking a thing which is in a container which is carried by a posible jugador (called portador):
    if portador is icalante and icalante is siguiendote:
        move noun to location;
        say "El icalante te deja coger [the noun].";
        try silently taking noun;
    otherwise if portador is not the player:
        say "No va a dejar que cojas [the noun]. Tal vez haya que matarlo primero.";
    otherwise:
        continue the action.

Instead of taking a thing which is carried by a posible jugador (called portador):
    if portador is icalante and icalante is siguiendote:
        move noun to location;
        say "El icalante te deja coger [the noun].";
        try silently taking noun;
    otherwise if portador is not the player:
        say "No va a dejar que cojas [the noun]. Tal vez haya que matarlo primero.";
    otherwise:
        say "Ya tienes [the noun].".

Instead of taking a thing which is worn by a posible jugador (called portador):
    if portador is icalante and icalante is siguiendote:
        say "El icalante te deja bastante claro por gestos que no piensa devolverte [the noun]. ¡Parece que le ha gustado!";
    otherwise if portador is not the player:
        say "No va a dejar que cojas [the noun]. Tal vez haya que matarlo primero.";
    otherwise:
        continue the action.